Socket
Socket
Sign inDemoInstall

@uppy/provider-views

Package Overview
Dependencies
6
Maintainers
5
Versions
106
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uppy/provider-views


Version published
Maintainers
5
Install size
3.44 MB
Created

Changelog

Source

3.13.0

Released: 2023-07-20

| Package | Version | Package | Version | | ---------------------- | ------- | ---------------------- | ------- | | @uppy/aws-s3-multipart | 3.5.1 | @uppy/provider-views | 3.4.1 | | @uppy/companion-client | 3.2.2 | @uppy/status-bar | 3.2.3 | | @uppy/dashboard | 3.5.0 | @uppy/utils | 5.4.2 | | @uppy/locales | 3.2.4 | uppy | 3.13.0 |

  • meta: Add i18n to CONTRIBUTING.md (Mikael Finstad / #4591)
  • @uppy/provider-views: Add VirtualList to ProviderView (Merlijn Vos / #4566)
  • @uppy/provider-views: fix race conditions with folder loading (Mikael Finstad / #4578)
  • @uppy/status-bar: fix ETA when status bar is installed during upload (Antoine du Hamel / #4588)
  • @uppy/provider-views: fix infinite folder loading (Mikael Finstad / #4590)
  • meta: examples/aws: client-side signing (Antoine du Hamel / #4463)
  • meta: Bump word-wrap from 1.2.3 to 1.2.4 (dependabot[bot] / #4586)
  • meta: e2e: increase requestTimeout to 16s (Antoine du Hamel / #4587)
  • @uppy/locales: update zh_TW translation (5idereal / #4583)
  • @uppy/aws-s3-multipart: fix crash on pause/resume (Merlijn Vos / #4581)
  • @uppy/aws-s3-multipart: do not access globalThis.crypto on the top-level (Bryan J Swift / #4584)

Readme

Source

@uppy/provider-views

Uppy logo: a smiling puppy above a pink upwards arrow

npm version CI status for Uppy tests CI status for Companion tests CI status for browser tests

View library for Uppy remote provider plugins.

Uppy is being developed by the folks at Transloadit, a versatile file encoding service.

Example

import Plugin from '@uppy/core/lib/plugin'
import { ProviderViews } from '@uppy/provider-views'

class GoogleDrive extends UIPlugin {
  install() {
    this.view = new ProviderViews(this)
    // snip
  }

  onFirstRender() {
    return Promise.all([
      this.provider.fetchPreAuthToken(),
      this.view.getFolder('root'),
    ])
  }

  render(state) {
    return this.view.render(state)
  }
}

Installation

Unless you are creating a custom provider plugin, you do not need to install this.

$ npm install @uppy/provider-views

License

The MIT License.

Keywords

FAQs

Last updated on 18 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc